home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 July / CMCD0704.ISO / Software / Freeware / Comunicatii / htttrack / httrack-3.32-2.exe / {app} / src_win / htsswf / htsswf.cpp next >
C/C++ Source or Header  |  2002-10-05  |  449b  |  22 lines

  1. // htsswf.cpp : Defines the entry point for the DLL application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "htsswf.h"
  6.  
  7. BOOL APIENTRY DllMain( HANDLE hModule, 
  8.                        DWORD  ul_reason_for_call, 
  9.                        LPVOID lpReserved
  10.                      )
  11. {
  12.     switch (ul_reason_for_call)
  13.     {
  14.         case DLL_PROCESS_ATTACH:
  15.         case DLL_THREAD_ATTACH:
  16.         case DLL_THREAD_DETACH:
  17.         case DLL_PROCESS_DETACH:
  18.             break;
  19.     }
  20.     return TRUE;
  21. }
  22.